home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Snippets / Platforms & Tools / MacApp / AEGestalt 1.0b3 / UAEClientCommand.h < prev    next >
Encoding:
Text File  |  1991-12-11  |  726 b   |  35 lines  |  [TEXT/MPS ]

  1. //    UAEClientCommand.h
  2. //     Copyright © 1991 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the TAEClientCommand class, the client
  5. //    Apple event class which makes the query over the network to the server
  6.  
  7.  
  8. #ifndef __AECLIENTCOMMAND__
  9. #define __AECLIENTCOMMAND__
  10.  
  11. #ifndef __AEGESTALT__
  12. #include "UAEGestalt.h"
  13. #endif
  14.  
  15. #ifndef __AEDOCUMENT__
  16. #include "UAEDocument.h"
  17. #endif
  18.  
  19.  
  20. class TAEDocument;
  21.  
  22. class TAEClientCommand : public TClientCommand{
  23. public:
  24.                                 TAEClientCommand();
  25.     virtual pascal void         IAEClientCommand(CommandNumber,
  26.                                                     TAEDocument*,
  27.                                                     AEEventID);
  28.     
  29.     virtual pascal void            ProcessReply(TAppleEvent*);
  30.  
  31. //    FIELDS
  32.     TAEDocument*                fDocument;
  33. };
  34.  
  35. #endif